home *** CD-ROM | disk | FTP | other *** search
- property psp_mysprite, pi_nextflashtime
-
- on beginSprite me
- psp_mysprite = sprite(me.spriteNum)
- end
-
- on exitFrame me
- if the timer > pi_nextflashtime then
- pi_nextflashtime = the timer + 30
- if psp_mysprite.blend = 100 then
- psp_mysprite.blend = 25
- else
- psp_mysprite.blend = 100
- end if
- end if
- end
-
- on getPropertyDescriptionList me
- return [#myproperty: [#comment: "comment:", #format: #float, #range: [#min: 0, #max: 180], #default: 10]]
- end
-